.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;            
    min-height: 500px;        
    background-image: url('../img/banner.jpg'); 
    background-size: cover !important;    
    background-position: left center !important; 
    background-repeat: no-repeat;
    display: flex;
    align-items: center;      
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end; 
}
.hero-split, .hero-section {
    margin-top: 75px; 
}

.hero-content {
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;                  
    max-width: 500px;                     
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
}

.hero-content h1 {
    font-size: 36px;
    color: black;                      
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: sans-serif;
}

.hero-content p {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-prenota, .btn-scopri {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: sans-serif;
}

.btn-prenota {
    background-color: #36AD49;
    color: #ffffff !important;
}

.btn-prenota:hover {
    background-color: #36AD49;
    transform: translateY(-2px);
}

.btn-scopri {
    background-color: transparent;
    color: #36AD49 !important;
    border: 2px solid #36AD49;
}

.btn-scopri:hover {
    background-color: #36AD49;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
        background-position: 65% center; 
        display: block;
    }

    .hero-container {
        justify-content: center; 
    }

    .hero-content {
        margin-top: 180px; 
        padding: 25px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column; 
        gap: 10px;
    }
    
    .btn-prenota, .btn-scopri {
        width: 100%;
        text-align: center;
    }
}